/* Share popup styles */

.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-popup-overlay.show {
    opacity: 1;
}

.share-popup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.share-popup-overlay.show .share-popup {
    transform: scale(1);
}

.share-popup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.share-popup-header h3 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.share-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.share-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.share-popup-content {
    padding: 30px 20px 20px;
    text-align: center;
}

.spin-achievement {
    margin-bottom: 25px;
}

.spin-count {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.spin-label {
    font-size: 16px;
    color: white;
    margin-top: 5px;
    letter-spacing: 2px;
}

.song-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.song-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.song-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.share-chat-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.share-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.share-chat-btn:active {
    transform: translateY(0);
}